home *** CD-ROM | disk | FTP | other *** search
/ An Introduction to Progr…l Basic 6.0 (4th Edition) / An Introduction to Programming using Visual Basic 6.0.iso / PROGRAMS / CH3 / 3-4-1.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1998-09-19  |  1.4 KB  |  50 lines

  1. VERSION 5.00
  2. Begin VB.Form frm3_4_1 
  3.    Caption         =   "3-4-1"
  4.    ClientHeight    =   1572
  5.    ClientLeft      =   1092
  6.    ClientTop       =   1488
  7.    ClientWidth     =   1728
  8.    BeginProperty Font 
  9.       Name            =   "MS Sans Serif"
  10.       Size            =   7.8
  11.       Charset         =   0
  12.       Weight          =   700
  13.       Underline       =   0   'False
  14.       Italic          =   0   'False
  15.       Strikethrough   =   0   'False
  16.    EndProperty
  17.    LinkTopic       =   "Form1"
  18.    PaletteMode     =   1  'UseZOrder
  19.    ScaleHeight     =   1572
  20.    ScaleWidth      =   1728
  21.    Begin VB.CommandButton cmdButton 
  22.       Caption         =   "Display Results"
  23.       Default         =   -1  'True
  24.       Height          =   615
  25.       Left            =   120
  26.       TabIndex        =   1
  27.       Top             =   840
  28.       Width           =   1455
  29.    End
  30.    Begin VB.PictureBox picBox 
  31.       Height          =   495
  32.       Left            =   120
  33.       ScaleHeight     =   444
  34.       ScaleWidth      =   1404
  35.       TabIndex        =   0
  36.       Top             =   120
  37.       Width           =   1455
  38.    End
  39. Attribute VB_Name = "frm3_4_1"
  40. Attribute VB_GlobalNameSpace = False
  41. Attribute VB_Creatable = False
  42. Attribute VB_PredeclaredId = True
  43. Attribute VB_Exposed = False
  44. Private Sub cmdButton_Click()
  45.   picBox.Cls
  46.   picBox.Print "hello"
  47.   today = "9/17/99"
  48.   picBox.Print today
  49. End Sub
  50.